home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d12 / c_toolbx.arc / VIEWPARM.H < prev    next >
Encoding:
C/C++ Source or Header  |  1988-03-30  |  553 b   |  22 lines

  1. /* viewparm.h - parameters for view program */
  2.  
  3. /* number of lines in a display page */
  4. #define PAGE_SIZE    16
  5.  
  6. /* number of lines of overlap between display pages  */
  7. #define LINES_OVERLAP    2
  8.  
  9. /* special return values from get_next_char & get_previous_char */
  10. /* to indicate that beginning or end of file has been reached    */
  11. #define EOF_MARK    -1
  12. #define BOF_MARK    -2
  13.  
  14. /* definition of control char marking the end of a line */
  15. #define END_LINE    10
  16.  
  17. /* define success/failure for return codes  */
  18. #define SUCCESS     1
  19. #define FAILURE     0
  20.  
  21.  
  22.